type crypto/ecdh.nistCurve

9 uses

	crypto/ecdh (current package)
		nist.go#L16: type nistCurve struct {
		nist.go#L24: func (c *nistCurve) String() string {
		nist.go#L28: func (c *nistCurve) GenerateKey(rand io.Reader) (*PrivateKey, error) {
		nist.go#L81: func (c *nistCurve) NewPrivateKey(key []byte) (*PrivateKey, error) {
		nist.go#L117: func (c *nistCurve) NewPublicKey(key []byte) (*PublicKey, error) {
		nist.go#L143: func (c *nistCurve) ecdh(local *PrivateKey, remote *PublicKey) ([]byte, error) {
		nist.go#L164: var p256 = &nistCurve{
		nist.go#L187: var p384 = &nistCurve{
		nist.go#L210: var p521 = &nistCurve{